bufio.Scanner.start (field)
14 uses
bufio (current package)
scan.go#L35: start int // First non-processed byte in buf.
scan.go#L149: if s.end > s.start || s.err != nil {
scan.go#L150: advance, token, err := s.split(s.buf[s.start:s.end], s.err != nil)
scan.go#L184: s.start = 0
scan.go#L191: if s.start > 0 && (s.end == len(s.buf) || s.start > len(s.buf)/2) {
scan.go#L192: copy(s.buf, s.buf[s.start:s.end])
scan.go#L193: s.end -= s.start
scan.go#L194: s.start = 0
scan.go#L210: copy(newBuf, s.buf[s.start:s.end])
scan.go#L212: s.end -= s.start
scan.go#L213: s.start = 0
scan.go#L248: if n > s.end-s.start {
scan.go#L252: s.start += n
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |